home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-09-21 | 373 b | 20 lines | [TEXT/ttxt] |
- //-------------------------------------------------------------------
- //
- // int2str
- //
- // Syntax: s = int2str(n)
- //
- // This routine converts the integer n to a string which
- // is returned.
- //
- // Original Author: Jeff Layton
- //-------------------------------------------------------------------
-
- int2str = function(n)
- {
- local(s);
-
- sprintf(s,"%.0f",n);
- return s;
- };
-